home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_ACCESS.MSC next >
Text File  |  1986-08-28  |  4KB  |  131 lines

  1. ;
  2. ;    Lotus Symphony Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for Symphony")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  10. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  11. Position    (LowerLeft(2,22)) ; Put menus in lower left corner
  12. ;
  13. ;    Cursor Definitions
  14. ;
  15.  
  16. Calc:    Cursor
  17. (
  18.     Left        ([Left])
  19.     Right        ([Right])
  20.     Up        ([Up])
  21.     Down        ([Down])
  22.     Hysteresis    (1,1)
  23.     Sensitivity    (13,8)
  24. )
  25. Word:    Cursor
  26. (
  27.     Left        ([Left])
  28.     Right        ([Right])
  29.     Up        ([Up])
  30.     Down        ([Down])
  31.     Hysteresis    (3,4)
  32.     Sensitivity    (2,4)
  33. )
  34. ;
  35. ;    Button Definitions
  36. ;
  37. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  38. MB:    Button    (Keys([Enter]))     ; Middle button
  39. RB:    Button    (Keys([Esc]))        ; Right button
  40. LBC:    Button    (Menu(Sheet))        ; Left button, Calc Menu
  41. LBW:    Button    (Menu(Doc))        ; Left button, Word Menu
  42.  
  43. ;
  44. ;    Menu Definitions
  45. ;
  46. Main: Menu
  47. (
  48.     Title    ("Main")
  49.     Item    ("Menu",                Keys([F10]))
  50.     Item    ("Services",            Keys([F9]))
  51.     Item    ("Anchor",              Keys("."))
  52.     Item    ("Sheet Mode",          Button(LBC),
  53.                     Cursor(Calc))
  54.     Item    ("Doc Mode",            Button(LBW),
  55.                     Cursor(Word))
  56.     Item    ("Next Window",         Keys([F6]))
  57.     Item    ("Zoom",                Keys([a-F6]))
  58.     Item    ("Change Type",         Keys([a-F10]))
  59.     Item    ("Switch Type",         Keys([a-F9]))
  60.     Item    ("Update Windows",      Keys([a-F8]))
  61.     Item    ("Help",                Keys([F1]))
  62. )
  63.  
  64. Sheet: Menu
  65. (
  66.     Title    ("Sheet")
  67.     Item    ("Menu",                Keys([F10]))
  68.     Item    ("Services",            Keys([F9]))
  69.     Item    ("@Sum(",               Keys("@Sum("))
  70.     Item    ("Anchor",              Keys("."))
  71.     Item    (")",                   Keys(")"))
  72.     Item    ("(",                   Keys("("))
  73.     Item    ("+",                   Keys("+"))
  74.     Item    ("-",                   Keys("-"))
  75.     Item    ("*",                   Keys("*"))
  76.     Item    ("/",                   Keys("/"))
  77.     Item    ("Absolute",            Keys([F4]))
  78.     Item    ("Edit",                Keys([F2]))
  79.     Item    ("Recalc",              Keys([F8]))
  80.     Item    ("Range Name",          Keys([F3]))
  81.     Item    ("Home",                Keys([Home]))
  82.     Item    ("End",                 Keys([End]))
  83.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  84. )
  85.  
  86. ;
  87. ;    Mouse Definition
  88.  
  89. Doc: Menu
  90. (
  91.     Title    ("Doc Menu")
  92.     Item    ("Menu",                Keys([F10]))
  93.     Item    ("Services",            Keys([F9]))
  94.     Item    ("Where Am I?",         Keys([a-F2]))
  95.     Item    ("Justify",             Keys([F2]))
  96.     Item    ("Split Line",          Keys([a-F3]))
  97.     Item    ("Center Line",         Keys([a-F4]))
  98.     Item    ("Indent Line",         Keys([F3]))
  99.     Item    ("Erase Block",         Keys([F4]))
  100.     Item    ("Compose",             Keys([a-F1]))
  101.     Item    ("Goto",                Keys([F5]))
  102.     Item    ("End",                 Keys([End]))
  103.     Item    ("Motion Menu",         Menu(Motion))
  104.     Item    ("Main Menu",           Menu(Main),Button(LBM),
  105.                     Cursor(Calc))
  106. )
  107. ;
  108. Motion: Menu
  109. (
  110.     Title    ("Motion Menu")
  111.     Item    ("Word left",           Keys([c-Left]))
  112.     Item    ("Word right",          Keys([c-Right]))
  113.     Item    ("Start of line",       Keys([End] [Left]))
  114.     Item    ("End of line",         Keys([End] [Right]))
  115.     Item    ("Start of paragraph",  Keys([End] [Up]))
  116.     Item    ("End of paragraph",    Keys([End] [Down]))
  117.     Item    ("Page up",             Keys([PgUp]))
  118.     Item    ("Page down",           Keys([PgDn]))
  119.     Item    ("Start of document",   Keys([Home]))
  120.     Item    ("End of document",     Keys([End] [Home]))
  121. )
  122. ;
  123. Mouse
  124. (
  125.     Left        (LBM)
  126.     Middle        (MB)
  127.     Right        (RB)
  128.     LeftRight    (MB)
  129.     Cursor        (Calc)
  130. )
  131.